baubs git
Commit c842334efcf25f98433b925db3122ff90170045e
Parents : 762cb4b
Author : Jan-Henrik Bruhn <hi@jhbruhn.de>
Date : 2025-12-06T23:30:12+01:00
Display machine serial number instead of model number
Change the Machine Connection panel to show the serial number instead
of the model number. The serial number is more useful for identifying
specific machines, especially when multiple machines of the same model
are in use.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
Changes
Diff
diff --git a/src/components/MachineConnection.tsx b/src/components/MachineConnection.tsx
index 77b18ab..1009833 100644
--- a/src/components/MachineConnection.tsx
+++ b/src/components/MachineConnection.tsx
@@ -136,8 +136,8 @@ export function MachineConnection({
{machineInfo && (
<div className="bg-gray-50 dark:bg-gray-700/50 p-4 rounded-lg space-y-2 mb-4">
<div className="flex justify-between text-sm">
- <span className="font-medium text-gray-600 dark:text-gray-400">Model:</span>
- <span className="font-semibold text-gray-900 dark:text-gray-100">{machineInfo.modelNumber}</span>
+ <span className="font-medium text-gray-600 dark:text-gray-400">Serial Number:</span>
+ <span className="font-semibold text-gray-900 dark:text-gray-100">{machineInfo.serialNumber}</span>
</div>
<div className="flex justify-between text-sm">
<span className="font-medium text-gray-600 dark:text-gray-400">Max Area:</span>
Served by rngit 1.4.2 - Generated in 0.08s